/*      > H.Types - Miscellaneous system types  */

#ifndef __sys_types
#define __sys_types

/* Get time_t and (struct tm) for stat and sys_time */
#include <time.h>

/* File offset or length */
typedef long int off_t;

/* Date/time in Arm csecs past 1-Jan-1900 */
typedef struct
{
        unsigned char t[5];     /* Low byte first - ie. t[0] is low */
}
sys_time;

#endif
